home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 7_7.lha / 7_7 / makefile < prev    next >
Makefile  |  1993-08-08  |  509b  |  27 lines

  1. C= CC -I. -I../7.6dir -I../../CC
  2. FLAGS=
  3.  
  4. ll: tst
  5.  
  6. st: tst.o all.o
  7. $(CC) -o tst tst.o all.o
  8.  
  9. st.o: tst.c ../7.6dir/7_6a.h 7_7_dlink.h 7_7dlist.h 7_7.h
  10. $(CC) -c tst.c
  11.  
  12. ll.o: all.c ../7.6dir/7_6a.h 7_7_dlink.h \
  13. ../7.6dir/7_6c.c ../7.6dir/7_6d.c ../7.6dir/7_6e.c \
  14. ../7.6dir/7_6_clear.c \
  15. 7_7ahere.c 7_7append.c 7_7getnext.c 7_7getprev.c \
  16. 7_7ihere.c 7_7insert.c 7_7next.c 7_7prev.c
  17. $(CC) -c all.c
  18.  
  19. MP= tst.cmp
  20. UT= tst.out
  21.  
  22. st.out: tst ; tst > tst.out
  23.  
  24. est: all $(CMP) $(OUT)
  25. cmp tst.out tst.cmp
  26. @echo test done
  27.